/* style.css - Warung Bakakak Sampurasun Cabang Sumedang */

/* ========== VARIABLES ========== */
:root {
    /* Warna Coklat Tema */
    --coklat-gelap: #361602;
    --coklat-tua: #381600;
    --coklat-medium: #8B4513;
    --coklat-terang: #A0522D;
    --coklat-emas: #D2691E;
    --coklat-krem: #F5DEB3;
    --coklat-coklat: #8B7355;
    
    /* Warna Netral */
    --putih: #FFFFFF;
    --abu-abu-terang: #F8F9FA;
    --abu-abu-medium: #6C757D;
    --abu-abu-gelap: #343A40;
    --hitam: #212529;
    
    /* Warna Aksen */
    --hijau-sundanese: #2E8B57;
    --merah-sambal: #DC3545;
    --kuning-emas: #FFD700;
    
    /* Font */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--hitam);
    background-color: var(--coklat-gelap);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
}

section {
    padding: var(--spacing-xl) 0;
}


.navbar {
    background: var(--coklat-gelap);
    padding: 0.8rem 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #D2691E;
}

/* Navbar saat di-scroll */
.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(62, 39, 35, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ============================================
   LOGO - FIXED PROPORSIONAL
   ============================================
   Ukuran presisi untuk semua device
============================================ */

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}

.navbar-logo {
    width: auto;
    height: 65px; /* Desktop: 65px */
    max-height: 70px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Hover effect pada logo */
.navbar-brand:hover .navbar-logo {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 12px rgba(210, 105, 30, 0.4));
}

/* Navbar scrolled - logo mengecil sedikit */
.navbar.scrolled .navbar-logo {
    height: 55px;
}

/* ============================================
   NAVBAR TOGGLER - MOBILE BUTTON
   ============================================ */

.navbar-toggler {
    border: 2px solid #F5DEB3;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    background: rgba(210, 105, 30, 0.1);
}

.navbar-toggler:hover {
    background: rgba(210, 105, 30, 0.2);
    transform: scale(0.98);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 4px rgba(210, 105, 30, 0.3);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245, 222, 179, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.4em;
    height: 1.4em;
}

/* ============================================
   NAVBAR MENU - DESKTOP
   ============================================ */

.navbar-collapse {
    transition: all 0.4s ease;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
}

/* ============================================
   NAV LINK - PREMIUM STYLING
   ============================================ */

.nav-link {
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.6rem 1.3rem !important;
    margin: 0 0.1rem;
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* HOVER STATE - Solid Gold */
.nav-link:hover {
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #D2691E, #B85A1A) !important;
    font-weight: 600;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(210, 105, 30, 0.4);
    border: 2px solid rgba(245, 222, 179, 0.2);
}

/* ACTIVE STATE - Solid dengan indicator */
.nav-link.active {
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #D2691E, #B85A1A) !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 15px rgba(210, 105, 30, 0.5);
    border: 2px solid rgba(245, 222, 179, 0.3);
    position: relative;
}

/* Active indicator - Garis bawah putih */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: slideActive 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideActive {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 30px;
        opacity: 1;
    }
}

/* ============================================
   DESKTOP LARGE - 1200px+
   ============================================ */
@media (min-width: 1200px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.6rem 0;
    }
    
    /* Logo lebih besar di desktop besar */
    .navbar-logo {
        height: 75px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 60px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.7rem 1.5rem !important;
        margin: 0 0.2rem;
    }
}

/* ============================================
   DESKTOP STANDARD - 992px - 1199px
   ============================================ */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar {
        padding: 0.7rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.5rem 0;
    }
    
    /* Logo ukuran medium */
    .navbar-logo {
        height: 70px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 55px;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.6rem 1.2rem !important;
    }
    
    .navbar-menu {
        gap: 0.2rem;
    }
}

/* ============================================
   TABLET LANDSCAPE - 768px - 991px
   ============================================ */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar {
        padding: 0.6rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.5rem 0;
    }
    
    /* Logo ukuran tablet */
    .navbar-logo {
        height: 60px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 50px;
    }
    
    /* Mobile Menu Styles */
    .navbar-collapse {
        background: linear-gradient(135deg, #3E2723, #4E342E);
        border-radius: 16px;
        padding: 1.5rem 1rem;
        margin-top: 1rem;
        border: 2px solid #D2691E;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }
    
    .navbar-menu {
        gap: 0.8rem;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 0.9rem 1.5rem !important;
        margin: 0.2rem 0;
        font-size: 1.05rem;
        border-radius: 12px;
        text-align: left;
        width: 100%;
    }
    
    .nav-link:hover {
        transform: translateX(8px);
        background: linear-gradient(135deg, #D2691E, #B85A1A) !important;
    }
    
    .nav-link.active {
        transform: translateX(5px);
    }
    
    .nav-link.active::after {
        bottom: 50%;
        left: 15px;
        transform: translateY(50%);
        width: 4px;
        height: 25px;
        animation: slideActiveMobile 0.4s ease;
    }
    
    @keyframes slideActiveMobile {
        0% {
            height: 0;
            opacity: 0;
        }
        100% {
            height: 25px;
            opacity: 1;
        }
    }
}

/* ============================================
   MOBILE LARGE - 576px - 767px
   ============================================ */
@media (min-width: 576px) and (max-width: 767px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.4rem 0;
    }
    
    /* Logo mobile large */
    .navbar-logo {
        height: 55px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 45px;
    }
    
    .navbar-collapse {
        background: linear-gradient(135deg, #3E2723, #4E342E);
        border-radius: 14px;
        padding: 1.2rem 0.8rem;
        margin-top: 0.8rem;
        border: 2px solid #D2691E;
    }
    
    .navbar-menu {
        gap: 0.6rem;
    }
    
    .nav-link {
        padding: 0.8rem 1.2rem !important;
        font-size: 1rem;
        border-radius: 10px;
        text-align: left;
    }
    
    .nav-link:hover {
        transform: translateX(6px);
    }
    
    .nav-link.active::after {
        bottom: 50%;
        left: 12px;
        transform: translateY(50%);
        width: 4px;
        height: 22px;
    }
}

/* ============================================
   MOBILE SMALL - < 576px
   ============================================ */
@media (max-width: 575.98px) {
    .navbar {
        padding: 0.4rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.3rem 0;
    }
    
    /* Logo mobile small - tetap proporsional */
    .navbar-logo {
        height: 50px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 42px;
    }
    
    /* Brand container */
    .navbar-brand {
        max-width: 70%;
    }
    
    .navbar-toggler {
        padding: 0.4rem 0.6rem;
    }
    
    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }
    
    .navbar-collapse {
        background: linear-gradient(135deg, #3E2723, #4E342E);
        border-radius: 12px;
        padding: 1rem 0.8rem;
        margin-top: 0.8rem;
        border: 2px solid #D2691E;
    }
    
    .navbar-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.7rem 1rem !important;
        font-size: 0.95rem;
        border-radius: 8px;
        text-align: left;
    }
    
    .nav-link:hover {
        transform: translateX(5px);
    }
    
    .nav-link.active {
        background: linear-gradient(135deg, #D2691E, #B85A1A) !important;
    }
    
    .nav-link.active::after {
        bottom: 50%;
        left: 10px;
        transform: translateY(50%);
        width: 4px;
        height: 20px;
        border-radius: 2px;
    }
    
    /* Hilangkan animation pada mobile kecil untuk performa */
    .nav-link.active::after {
        animation: none;
    }
}

/* ============================================
   EXTRA SMALL MOBILE - < 400px
   ============================================ */
@media (max-width: 400px) {
    .navbar-logo {
        height: 45px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 38px;
    }
    
    .nav-link {
        padding: 0.6rem 0.9rem !important;
        font-size: 0.9rem;
    }
}

/* ============================================
   LANDSCAPE MODE - Height Kecil
   ============================================ */
@media (max-height: 600px) and (orientation: landscape) {
    .navbar {
        padding: 0.3rem 0;
    }
    
    .navbar-logo {
        height: 45px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 40px;
    }
    
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* ============================================
   ACCESSIBILITY - REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .navbar-logo,
    .nav-link,
    .navbar-toggler,
    .nav-link::after {
        transition: none !important;
        animation: none !important;
    }
    
    .navbar-brand:hover .navbar-logo {
        transform: none;
    }
    
    .nav-link:hover {
        transform: none;
    }
}

/* ============================================
   HIGH RESOLUTION - 4K
   ============================================ */
@media (min-width: 2000px) {
    .container {
        max-width: 1800px;
    }
    
    .navbar-logo {
        height: 90px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 70px;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 1.8rem !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar {
        background: white;
        border-bottom: 2px solid #000;
        box-shadow: none;
    }
    
    .navbar-logo {
        filter: none;
    }
    
    .nav-link {
        color: black !important;
    }
    
    .navbar-toggler {
        display: none;
    }
}





/* ========== HERO SECTION ========== */
/* ============================================
   HERO SECTION - PREMIUM WEBSITE
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.65;
}

/* Overlay Gelap */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ============================================
   CONTAINER - CENTER PERFECT
   ============================================ */
.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;     /* VERTICAL CENTER */
    justify-content: center; /* HORIZONTAL CENTER */
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section .row {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
}

.hero-section .col-lg-8 {
    width: 100%;
    max-width: 900px;
    padding: 0;
    margin: 0 auto;
    float: none;
    display: block;
}

/* ============================================
   CONTENT - SPACING PRESISI UNTUK PERUSAHAAN
   ============================================ */
.hero-content {
    text-align: center;
    width: 100%;
}

.hero-title {
    color: #F5DEB3;
    font-size: 2.9rem !important;
    font-weight: 900;
    letter-spacing:normal;
    margin: 0 0 15px 0;
    padding: 0;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.hero-logo {
    margin: 0 0 15px 0;
    padding: 0;
    display: block;
}

.hero-logo img {
    max-height: 280px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
}

.hero-desc {
    color: #FFFFFF;
    font-size: 1.1rem !important;
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    opacity: 0.95;
}

/* ============================================
   DESKTOP 1200px++
   ============================================ */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    .hero-logo img {
        max-height: 280px;
        margin-bottom: 15px;
    }
    .hero-desc {
        font-size: 1.2rem;
        max-width: 750px;
    }
}

/* ============================================
   DESKTOP 992px - 1199px
   ============================================ */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 14px;
    }
    .hero-logo img {
        max-height: 250px;
        margin-bottom: 14px;
    }
    .hero-desc {
        font-size: 1.1rem;
        max-width: 700px;
    }
}

/* ============================================
 RESPONSIVE MOBILE = TABLET
   ============================================ */
/* ============================================
   HERO SECTION - MOBILE & TABLET ONLY
   ============================================
   PRIORITAS UTAMA:
   1. FULL HEIGHT 100vh - TIDAK BOLEH ADA CELAH
   2. FONT JUDUL PROPORSIONAL - TIDAK KEKECILAN
   3. SPACING SUPER RAPAT - 2-4px SAJA
============================================ */

@media (max-width: 991.98px) {

    /* ----------------------------------------
       RESET TOTAL - SEMUA MARGIN & PADDING 0
    ---------------------------------------- */
    .hero-section,
    .hero-section .container,
    .hero-section .row,
    .hero-section .col-lg-8,
    .hero-section .hero-title,
    .hero-section .hero-logo,
    .hero-section .hero-desc {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* ----------------------------------------
       FULL HEIGHT - PAKSA 100vh DENGAN POSITION
    ---------------------------------------- */
    .hero-section {
        position: relative !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden !important;
        display: block !important;
    }

    .hero-video,
    .hero-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .hero-section .container {
        position: relative !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 20px !important;
        z-index: 2 !important;
    }

    .hero-section .row {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-section .col-lg-8 {
        width: 100% !important;
        max-width: 800px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* ----------------------------------------
       CONTENT - SPACING PRESISI DENGAN PADDING
    ---------------------------------------- */
    .hero-title {
        color: #F5DEB3 !important;
        font-weight: 700 !important; /* LEBIH TEBAL */
        letter-spacing: 2px !important;
        text-shadow: 0 4px 15px rgba(0,0,0,0.7) !important;
        line-height: 1.1 !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 0 4px 0 !important; /* JARAK SANGAT RAPAT */
    }

    .hero-logo {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 0 4px 0 !important; /* JARAK SANGAT RAPAT */
    }

    .hero-logo img {
        display: block !important;
        margin: 0 auto !important;
        filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6)) !important;
        transition: none !important;
    }

    .hero-desc {
        color: #FFFFFF !important;
        text-shadow: 0 2px 8px rgba(0,0,0,0.6) !important;
        font-weight: 400 !important;
        line-height: 1.5 !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        word-wrap: break-word !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* HILANGKAN LINE BREAK */
    .hero-desc br {
        display: none !important;
    }

    /* ----------------------------------------
       TABLET (768px - 991px)
       FONT BESAR, SPACING MINIMAL
    ---------------------------------------- */
    @media (min-width: 768px) {
        .hero-title {
            font-size: 2.2rem !important; /* BESAR, BUKAN KECIL! */
            padding-bottom: 4px !important;
            letter-spacing: 2.5px !important;
        }

        .hero-logo {
            padding-bottom: 4px !important;
        }

        .hero-logo img {
            max-height: 200px !important; /* BESAR, PROPORSIONAL */
        }

        .hero-desc {
            font-size: 1rem !important; /* SEDANG */
            max-width: 600px !important;
            -webkit-line-clamp: 3 !important;
        }
    }

    /* ----------------------------------------
       MOBILE LARGE (576px - 767px)
       FONT BESAR, SPACING MINIMAL
    ---------------------------------------- */
    @media (min-width: 576px) and (max-width: 767px) {
        .hero-title {
            font-size: 1.9rem !important; /* BESAR */
            padding-bottom: 4px !important;
            letter-spacing: 2px !important;
        }

        .hero-logo {
            padding-bottom: 4px !important;
        }

        .hero-logo img {
            max-height: 170px !important; /* BESAR */
        }

        .hero-desc {
            font-size: 0.95rem !important;
            max-width: 500px !important;
            -webkit-line-clamp: 3 !important;
        }
    }

    /* ----------------------------------------
       MOBILE MEDIUM (425px - 575px)
       FONT SEDANG-BESAR, SPACING MINIMAL
    ---------------------------------------- */
    @media (min-width: 425px) and (max-width: 575px) {
        .hero-title {
            font-size: 1.7rem !important; /* SEDANG-BESAR */
            padding-bottom: 4px !important;
            letter-spacing: 1.8px !important;
        }

        .hero-logo {
            padding-bottom: 4px !important;
        }

        .hero-logo img {
            max-height: 150px !important; /* SEDANG-BESAR */
        }

        .hero-desc {
            font-size: 0.9rem !important;
            max-width: 400px !important;
            -webkit-line-clamp: 3 !important;
        }
    }

    /* ----------------------------------------
       MOBILE SMALL (375px - 424px)
       FONT SEDANG, SPACING SANGAT MINIMAL
    ---------------------------------------- */
    @media (min-width: 375px) and (max-width: 424px) {
        .hero-title {
            font-size: 1.5rem !important; /* SEDANG */
            padding-bottom: 3px !important;
            letter-spacing: 1.5px !important;
        }

        .hero-logo {
            padding-bottom: 3px !important;
        }

        .hero-logo img {
            max-height: 130px !important; /* SEDANG */
        }

        .hero-desc {
            font-size: 0.85rem !important;
            max-width: 320px !important;
            -webkit-line-clamp: 3 !important;
        }
    }

    /* ----------------------------------------
       MOBILE EXTRA SMALL (320px - 374px)
       FONT SEDANG, SPACING MINIMAL
    ---------------------------------------- */
    @media (min-width: 320px) and (max-width: 374px) {
        .hero-title {
            font-size: 1.3rem !important; /* SEDANG */
            padding-bottom: 3px !important;
            letter-spacing: 1.2px !important;
        }

        .hero-logo {
            padding-bottom: 3px !important;
        }

        .hero-logo img {
            max-height: 110px !important; /* SEDANG */
        }

        .hero-desc {
            font-size: 0.8rem !important;
            max-width: 280px !important;
            -webkit-line-clamp: 3 !important;
        }
    }

    /* ----------------------------------------
       FOLDABLE (<320px)
       FONT CUKUP, SPACING MINIMAL
    ---------------------------------------- */
    @media (max-width: 319px) {
        .hero-title {
            font-size: 1.1rem !important; /* CUKUP */
            padding-bottom: 2px !important;
            letter-spacing: 1px !important;
        }

        .hero-logo {
            padding-bottom: 2px !important;
        }

        .hero-logo img {
            max-height: 90px !important; /* CUKUP */
        }

        .hero-desc {
            font-size: 0.7rem !important;
            max-width: 240px !important;
            -webkit-line-clamp: 3 !important;
        }
    }

    /* ----------------------------------------
       LANDSCAPE MODE - HEIGHT KECIL
    ---------------------------------------- */
    @media (max-height: 600px) and (orientation: landscape) {
        .hero-title {
            font-size: 1.3rem !important;
            padding-bottom: 2px !important;
        }

        .hero-logo {
            padding-bottom: 2px !important;
        }

        .hero-logo img {
            max-height: 90px !important;
        }

        .hero-desc {
            font-size: 0.75rem !important;
            max-width: 500px !important;
            -webkit-line-clamp: 2 !important;
        }
    }

    /* ----------------------------------------
       TABLET LANDSCAPE (800px - 991px)
    ---------------------------------------- */
    @media (min-width: 800px) and (max-width: 991px) and (orientation: landscape) {
        .hero-title {
            font-size: 1.8rem !important;
            padding-bottom: 4px !important;
        }

        .hero-logo {
            padding-bottom: 4px !important;
        }

        .hero-logo img {
            max-height: 150px !important;
        }

        .hero-desc {
            font-size: 0.9rem !important;
            max-width: 600px !important;
            -webkit-line-clamp: 2 !important;
        }
    }
}

/* --------------------------------------------
   FALLBACK BROWSER LAMA
-------------------------------------------- */
@supports not (display: -webkit-box) {
    .hero-desc {
        white-space: normal !important;
        word-wrap: break-word !important;
    }
}


   


/* ========== ABOUT SECTION ========== */
.about-section {
    background-color: var(--coklat-tua);
    color: var(--coklat-krem);
    position: relative;
    overflow: hidden;
}

/* Gambar 3D Effect MAKSIMAL dengan Border */
.about-image {
    position: relative;
    overflow: visible;
    border-radius: var(--radius-lg);
    transform-style: preserve-3d;
    perspective: 1500px;
    transition: all 0.4s ease;
    height: 70% !important;
    padding: 8px;
    background: linear-gradient(145deg, var(--coklat-terang), var(--coklat-emas), var(--coklat-terang));
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 25px 65px rgba(0, 0, 0, 0.3);
}

/* Inner border untuk efek berlapis */
.about-image::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: linear-gradient(145deg, rgba(212, 165, 116, 0.4), rgba(160, 82, 45, 0.4));
    border-radius: var(--radius-lg);
    z-index: 1;
    pointer-events: none;
}

/* Shadow 3D di belakang */
.about-image::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(145deg, rgba(212, 165, 116, 0.3), rgba(0, 0, 0, 0.4));
    border-radius: var(--radius-lg);
    z-index: -1;
    filter: blur(25px);
    transition: all 0.4s ease;
}

.about-image img {
    width: 100%;
    height: 80% !important;
    min-height: 450px;
    max-height: 550px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 4px);
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 
        inset 0 0 0 2px rgba(255, 255, 255, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 30px 70px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(30px);
}

/* Hover Effect - 3D Tilt */
.about-image:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 40px 90px rgba(0, 0, 0, 0.4),
        0 0 0 10px rgba(212, 165, 116, 0.2);
}

.about-image:hover::after {
    top: 45px;
    left: 45px;
    right: -45px;
    bottom: -45px;
    filter: blur(35px);
}

.about-image:hover img {
    transform: translateZ(50px) scale(1.03);
    box-shadow: 
        inset 0 0 0 3px rgba(255, 255, 255, 0.3),
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 40px 90px rgba(0, 0, 0, 0.4);
}

/* Glowing effect saat hover */
.about-image:hover::before {
    background: linear-gradient(145deg, rgba(212, 165, 116, 0.6), rgba(160, 82, 45, 0.6));
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Alignment untuk row */
.about-section .row {
    align-items: stretch;
}

.about-section .col-lg-6 {
    display: flex;
    flex-direction: column;
}

/* Judul dengan Gradient */
.section-title {
    font-size: 2.3rem !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #f5f5dc 0%, var(--coklat-emas) 50%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--coklat-emas), var(--coklat-terang));
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.4);
}

/* Deskripsi */
.about-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--coklat-krem);
    opacity: 0.95;
}

/* Container Features */
.about-features {
    margin-top: 1.5rem;
}

/* Feature Items dengan 3D Effect */
.about-features .feature-item {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(160, 82, 45, 0.15) 100%);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--coklat-emas);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 8px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.about-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: var(--transition-normal);
}

.about-features .feature-item::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: -4px;
    bottom: -4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    z-index: -1;
    filter: blur(8px);
    opacity: 0;
    transition: var(--transition-normal);
}

.about-features .feature-item:hover {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.25) 0%, rgba(160, 82, 45, 0.25) 100%);
    transform: translateY(-5px) translateZ(10px);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-left-width: 6px;
}

.about-features .feature-item:hover::before {
    opacity: 1;
}

.about-features .feature-item:hover::after {
    opacity: 1;
    top: 8px;
    left: 8px;
}

.about-features .feature-item i {
    font-size: 1.4rem;
    margin-right: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition-normal);
}

.about-features .feature-item:hover i {
    transform: scale(1.2) translateZ(5px);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.5));
}

.about-features .feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--coklat-krem);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Grid untuk feature items */
.about-features .row {
    row-gap: 1rem;
}

/* Button */
.about-section .btn-primary {
    background: linear-gradient(135deg, var(--coklat-terang), var(--coklat-emas));
    border: none;
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.about-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-normal);
}

.about-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

.about-section .btn-primary:hover::before {
    left: 100%;
}

/* Responsive Design */
/* ============================================
   ABOUT SECTION - MOBILE & TABLET ONLY
   ============================================
   URUTAN:
   1. GAMBAR (PALING ATAS)
   2. JUDUL (PUTIH) + GARIS DI TENGAH
   3. DESKRIPSI (PUTIH)
   4. CARD FEATURES (TEKS PUTIH, BORDER COKLAT ORANGE)
============================================ */

@media (max-width: 991.98px) {

    /* ----------------------------------------
       BACKGROUND SECTION - COKLAT GELAP
    ---------------------------------------- */
    .about-section {
        padding: 40px 0 !important;
        background: #3E2723 !important;
    }

    .about-section .container {
        padding: 0 20px !important;
    }

    /* ----------------------------------------
       RESET & PAKSA URUTAN
    ---------------------------------------- */
    .about-section .row {
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .about-section .col-lg-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* PAKSA URUTAN - GAMBAR JADI PERTAMA */
    .about-section .col-lg-6:first-child {
        order: 1 !important; /* GAMBAR JADI PERTAMA */
    }

    .about-section .col-lg-6:last-child {
        order: 2 !important; /* KONTEN TEXT JADI KEDUA */
    }

    /* ----------------------------------------
       1. GAMBAR - PALING ATAS (DIPERKECIL)
    ---------------------------------------- */
    .about-section .about-image {
        margin: 0 auto 15px auto !important;
        padding: 0 !important;
        width: 85% !important; /* DIPERKECIL JADI 85% */
        max-width: 400px !important; /* MAKSIMAL 400px */
        border-radius: 16px !important;
        overflow: hidden !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3) !important;
    }

    .about-section .about-image img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
        border-radius: 16px !important;
    }

    /* ----------------------------------------
       2. SECTION TITLE - PUTIH + GARIS DI TENGAH
    ---------------------------------------- */
    .about-section .section-title {
        color: #FFFFFF !important;
        font-weight: 700 !important;
        letter-spacing: 1.5px !important;
        margin: 0 0 20px 0 !important;
        padding: 0 0 12px 0 !important;
        line-height: 1.2 !important;
        position: relative !important;
        display: block !important; /* UBAH JADI BLOCK */
        text-align: center !important; /* TENGAH */
        font-size: 2rem !important;
        text-shadow: 0 2px 5px rgba(0,0,0,0.3) !important;
    }

    .about-section .section-title::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important; /* MULAI DARI TENGAH */
        transform: translateX(-50%) !important; /* GESER KE TENGAH */
        width: 70px !important;
        height: 3px !important;
        background: linear-gradient(90deg, #D2691E, #F5DEB3) !important;
        border-radius: 3px !important;
    }

    /* ----------------------------------------
       3. DESKRIPSI - TEKS PUTIH
    ---------------------------------------- */
    .about-section .about-desc {
        color: #FFFFFF !important;
        font-weight: 400 !important;
        line-height: 1.6 !important;
        margin: 0 0 15px 0 !important;
        padding: 0 !important;
        text-align: justify !important;
        text-justify: inter-word !important;
        font-size: 1rem !important;
        text-shadow: 0 1px 3px rgba(0,0,0,0.2) !important;
    }

    /* ----------------------------------------
       4. CARD FEATURES - TEKS PUTIH, BORDER COKLAT ORANGE
    ---------------------------------------- */
    .about-section .about-features {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .about-section .about-features .row {
        display: flex !important;
        flex-wrap: wrap !important;
        margin: 0 -4px !important;
    }

    .about-section .about-features [class*="col-"] {
        padding: 0 4px !important;
        margin-bottom: 8px !important;
    }

    .about-section .feature-item {
        display: flex !important;
        align-items: center !important;
        background: rgba(62, 39, 35, 0.6) !important; /* COKLAT SEMI TRANSPARAN */
        padding: 12px 14px !important;
        border-radius: 12px !important;
        border: 2px solid #D2691E !important; /* BORDER COKLAT ORANGE */
        height: 100% !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
        transition: all 0.3s ease !important;
        backdrop-filter: blur(5px) !important;
    }

    .about-section .feature-item:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(210, 105, 30, 0.4) !important;
        border-color: #F5DEB3 !important;
    }

    .about-section .feature-item i {
        font-size: 1.2rem !important;
        color: #D2691E !important; /* ICON COKLAT ORANGE */
        margin-right: 10px !important;
        flex-shrink: 0 !important;
    }

    /* Override warna icon Bootstrap */
    .about-section .feature-item i.text-warning {
        color: #D2691E !important;
    }

    .about-section .feature-item span {
        color: #FFFFFF !important; /* TEKS PUTIH */
        font-weight: 600 !important;
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    }

    /* ----------------------------------------
       TABLET (768px - 991px)
    ---------------------------------------- */
    @media (min-width: 768px) and (max-width: 991.98px) {
        .about-section {
            padding: 50px 0 !important;
        }

        .about-section .about-image {
            width: 75% !important; /* LEBIH KECIL DI TABLET */
            max-width: 450px !important;
            margin-bottom: 18px !important;
            border-radius: 18px !important;
        }

        .about-section .section-title {
            font-size: 2.2rem !important;
            margin-bottom: 22px !important;
            padding-bottom: 14px !important;
        }
        
        .about-section .section-title::after {
            width: 80px !important;
        }
        
        .about-section .about-desc {
            font-size: 1.05rem !important;
            margin-bottom: 18px !important;
        }
        
        .about-section .feature-item {
            padding: 14px 16px !important;
            border-width: 2px !important;
        }

        .about-section .feature-item i {
            font-size: 1.3rem !important;
        }

        .about-section .feature-item span {
            font-size: 1rem !important;
        }
    }

    /* ----------------------------------------
       MOBILE SMALL (max 424px)
    ---------------------------------------- */
    @media (max-width: 424px) {
        .about-section {
            padding: 30px 0 !important;
        }

        .about-section .about-image {
            width: 90% !important; /* 90% DI MOBILE KECIL */
            max-width: 350px !important;
            margin-bottom: 12px !important;
            border-radius: 12px !important;
        }

        .about-section .section-title {
            font-size: 1.6rem !important;
            margin-bottom: 18px !important;
            padding-bottom: 10px !important;
        }
        
        .about-section .section-title::after {
            width: 55px !important;
        }
        
        .about-section .about-desc {
            font-size: 0.9rem !important;
            margin-bottom: 12px !important;
        }
        
        .about-section .feature-item {
            padding: 10px 12px !important;
            border-width: 1.5px !important;
        }

        .about-section .feature-item i {
            font-size: 1.1rem !important;
            margin-right: 8px !important;
        }
        
        .about-section .feature-item span {
            font-size: 0.85rem !important;
        }
    }
}




/* ========== MENU SECTION ========== */
/* ============================================================
   MENU SECTION - COMPLETE CSS v5
   
   STRATEGI FINAL:
   - Gunakan container centered dengan max-width
   - Card width pakai calc dari container width yang terbatas
   - Ada padding/jarak yang rapi di kiri-kanan
   - Desktop: 3 card | Tablet: 2 card | Mobile: 1 card
   ============================================================ */

/* ============================================================
   1. SECTION
   ============================================================ */
.menu-section {
    background: var(--coklat-tua, #2c1812);
    position: relative;
    overflow: hidden;
    padding: 60px 0 50px;
}

.menu-section::before {
    content: '';
    position: absolute;
    inset: -50%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212,165,116,0.08) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(160,82,45,0.08) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(139,69,19,0.05) 0%, transparent 40%);
    animation: floatPattern 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatPattern {
    0%,100% { transform: translate(0,0) rotate(0deg); }
    33%      { transform: translate(30px,-30px) rotate(1deg); }
    66%      { transform: translate(-20px,20px) rotate(-1deg); }
}

.menu-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%, #D4A574 25%, #C9A66B 50%, #D4A574 75%, transparent 100%);
    opacity: 0.6;
    z-index: 1;
}

/* ============================================================
   2. CONTAINER
   ============================================================ */
.menu-section .container-fluid {
    position: relative;
    z-index: 2;
    padding-left: 0;
    padding-right: 0;
}

/* ============================================================
   3. HEADER
   ============================================================ */
.menu-section .row.justify-content-center {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2.5rem !important;
}

.menu-section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #f5f5dc 0%, #D4A574 50%, #C9A66B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem !important;
    display: inline-block;
    position: relative;
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%,100% { filter: brightness(1); }
    50%      { filter: brightness(1.25); }
}

.menu-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 3px;
    background: linear-gradient(90deg,
        transparent 0%, #D4A574 20%, #C9A66B 50%, #D4A574 80%, transparent 100%);
    border-radius: 4px;
}

.menu-section-subtitle {
    color: rgba(245,245,220,0.85);
    font-size: clamp(0.82rem, 2vw, 0.95rem);
    font-weight: 300;
    max-width: 550px;
    margin: 0.75rem auto 0 !important;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ============================================================
   4. SCROLL WRAPPER — CENTERED DENGAN PADDING RAPI

   Pendekatan:
   - .menu-scroll-container → centered, ada padding kiri-kanan
     sebagai "frame" yang terlihat rapi
   - Di dalam frame itu, .menu-scroll-wrapper bisa scroll
   - Card dihitung dari lebar frame tersebut

   Desktop  : frame 1200px, 3 card
   Tablet   : frame 100%, 2 card  
   Mobile   : frame 100%, 1 card
   ============================================================ */

.menu-scroll-container {
    width: 100%;
    max-width: 1260px;        /* frame centered */
    margin: 0 auto;
    padding: 0 30px;          /* JARAK kiri-kanan yang rapi */
    box-sizing: border-box;
    /* overflow hidden untuk potong card berlebih */
    overflow: hidden;
    position: relative;
}

.menu-scroll-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;         /* yang bisa digeser */
    overflow-y: visible;
    justify-content: flex-start;
    gap: 24px;
    padding: 16px 4px 24px;   /* sedikit padding atas-bawah untuk shadow hover */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* ============================================================
   5. CARD ITEM — LEBAR PRESISI

   Frame container = min(100vw, 1260px) - 60px padding = max 1200px
   3 card dalam 1200px dengan gap 24px:
   card = (1200px - 24px - 24px) / 3 = 1152px / 3 = 384px

   Tapi karena frame bisa lebih kecil dari 1200px,
   kita pakai calc dari 100% container:
   card = calc((100% - 24px * 2) / 3)
        = calc((100% - 48px) / 3)
   ============================================================ */

.menu-card-item {
    flex: 0 0 calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
    scroll-snap-align: start;
    animation: cardSlideIn 0.5s ease-out backwards;
}

@keyframes cardSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.menu-card-item:nth-child(1)  { animation-delay: 0.08s; }
.menu-card-item:nth-child(2)  { animation-delay: 0.14s; }
.menu-card-item:nth-child(3)  { animation-delay: 0.20s; }
.menu-card-item:nth-child(4)  { animation-delay: 0.26s; }
.menu-card-item:nth-child(5)  { animation-delay: 0.32s; }
.menu-card-item:nth-child(6)  { animation-delay: 0.38s; }
.menu-card-item:nth-child(7)  { animation-delay: 0.44s; }
.menu-card-item:nth-child(8)  { animation-delay: 0.50s; }
.menu-card-item:nth-child(9)  { animation-delay: 0.56s; }
.menu-card-item:nth-child(10) { animation-delay: 0.62s; }
.menu-card-item:nth-child(11) { animation-delay: 0.68s; }
.menu-card-item:nth-child(12) { animation-delay: 0.74s; }

/* ============================================================
   6. MENU CARD
   ============================================================ */
.menu-card {
    position: relative;
    background: linear-gradient(145deg, #4a3424, #3d2817);
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    width: 100%;
    cursor: pointer;
    border: 1px solid rgba(212,165,116,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
    transition:
        transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.65);
    border-color: rgba(212,165,116,0.5);
}

/* ============================================================
   7. IMAGE
   ============================================================ */
.menu-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.88);
    transition: transform 0.6s ease, filter 0.4s ease;
    display: block;
}

.menu-card:hover .menu-image {
    transform: scale(1.08);
    filter: brightness(0.35);
}

/* ============================================================
   8. BADGE
   ============================================================ */
.menu-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: linear-gradient(135deg, #D4A574, #FFD700);
    color: #2c1812;
    padding: 5px 14px;
    border-radius: 25px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 14px rgba(255,215,0,0.4);
    border: 1px solid rgba(255,255,255,0.25);
    z-index: 15;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.07); }
}

/* ============================================================
   9. MENU CONTENT — SLIDE UP SAAT HOVER
   ============================================================ */
.menu-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 22px 20px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.97) 0%,
        rgba(0,0,0,0.88) 55%,
        transparent 100%
    );
    transform: translateY(100%);
    transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 10;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.menu-card:hover .menu-content {
    transform: translateY(0);
}

.menu-title {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.32s ease 0.10s, transform 0.32s ease 0.10s;
}

.menu-card:hover .menu-title {
    opacity: 1;
    transform: translateY(0);
}

.menu-desc {
    color: rgba(245,245,220,0.88);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.32s ease 0.18s, transform 0.32s ease 0.18s;
}

.menu-card:hover .menu-desc {
    opacity: 1;
    transform: translateY(0);
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(212,165,116,0.3);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.32s ease 0.25s, transform 0.32s ease 0.25s;
}

.menu-card:hover .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.menu-price {
    color: #D4A574;
    font-size: 1.2rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    transition: color 0.3s ease;
}

.menu-card:hover .menu-price { color: #FFD700; }

/* ============================================================
   10. SCROLL HINT
   ============================================================ */
.scroll-hint {
    color: rgba(245,245,220,0.6);
    font-size: 0.78rem;
    margin-top: 0.75rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.scroll-hint i {
    color: #D4A574;
    font-size: 0.9rem;
    animation: hintMove 2s ease-in-out infinite;
}

@keyframes hintMove {
    0%,100% { transform: translateX(0);   opacity: 0.6; }
    50%      { transform: translateX(8px); opacity: 1; }
}

/* ============================================================
   11. BUTTON
   ============================================================ */
.menu-section .text-center.mt-5 {
    margin-top: 2rem !important;
}

.btn-menu-full {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
    color: #FFFFFF !important;
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(212,165,116,0.3);
    box-shadow: 0 6px 18px rgba(139,69,19,0.45);
    transition:
        transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
        box-shadow 0.4s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.btn-menu-full:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #A0522D 0%, #D2691E 50%, #A0522D 100%);
    box-shadow: 0 10px 26px rgba(139,69,19,0.7);
    border-color: rgba(212,165,116,0.6);
    color: #FFFFFF;
}

.btn-menu-full i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-menu-full:hover i { transform: translateX(5px); }

/* ============================================================
   12. RESPONSIVE

   TABLET ≤ 991px : 2 card
   card = calc((100% - 24px) / 2)   [1 gap di tengah]

   MOBILE ≤ 575px : 1 card
   card = 100%                       [0 gap]
   ============================================================ */

@media (max-width: 991px) {
    .menu-scroll-container {
        padding: 0 20px;
    }
    .menu-card-item {
        flex: 0 0 calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
    }
    .menu-card {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .menu-section {
        padding: 45px 0 40px;
    }
    .menu-scroll-container {
        padding: 0 16px;
    }
    .menu-card-item {
        flex: 0 0 85vw;   /* 85% layar — sedikit intip card berikutnya */
        width: 85vw;
    }
    .menu-card {
        height: 320px;
    }
    .menu-scroll-wrapper {
        gap: 16px;
    }
    .menu-title { font-size: 1rem; }
    .menu-price { font-size: 1.05rem; }
}







/* ========== GALLERY SECTION ========== */
/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    position: relative;
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video Background */
.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.7) sepia(0.3);
    -webkit-filter: brightness(0.7) sepia(0.3);
}

.testimonial-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.overlay-texture {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="rgba(255,215,0,0.05)" stroke-width="2"/><path d="M30,30 L70,30 L70,70 L30,70 Z" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="1.5"/></svg>');
    opacity: 0.3;
}

.testimonial-section .text-center {
    margin-bottom: 3rem;
    position: relative;
    z-index: 3;
}

.testimonial-section .section-title-light {
    color: #FFFFFF !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 800 !important;
    font-size: 2.8rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.testimonial-section .section-title-light::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FF8C00 50%, 
        transparent 100%);
    border-radius: 2px;
}

.testimonial-section .section-subtitle-light {
    color: rgba(255, 248, 220, 0.95);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* ===== TESTIMONIAL SLIDER CONTAINER ===== */
.testimonial-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 500px;
    overflow: hidden;
    z-index: 3;
}

.testimonial-slider-container input[type="radio"] {
    display: none;
}

.testimonial-cards-wrapper {
    display: flex;
    width: 400%; /* DIUBAH: 400% untuk 4 slide */
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.testimonial-slide {
    width: 25%; /* DIUBAH: 25% untuk 4 slide */
    min-width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* ===== TESTIMONIAL PHOTO CARD ===== */
.testimonial-photo-card {
    width: 30%;
    height: 450px;
    position: relative;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(58, 26, 5, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 140, 0, 0.2);
}

.photo-container {
    width: 100%;
    height: 100%;
    position: relative;
    border: 3px solid rgba(210, 105, 30, 0.5);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.photo-container:hover {
    border-color: #FF8C00;
}

.photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.photo-container:hover img {
    transform: scale(1.05);
}

/* ===== PHOTO INFO OVERLAY (Awalnya tersembunyi) ===== */
.photo-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(93, 41, 6, 0) 0%,
        rgba(93, 41, 6, 0.7) 40%,
        rgba(93, 41, 6, 0.95) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 25px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.photo-container:hover .photo-info-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* ===== TESTIMONIAL RATING ===== */
.testimonial-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.rating-star {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    transition: all 0.3s ease;
}

.rating-star.active {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-score {
    color: #FFF8DC;
    font-size: 1rem;
    font-weight: 700;
    margin-left: 10px;
    background: rgba(255, 215, 0, 0.15);
    padding: 5px 12px;
    border-radius: 20px;
    min-width: 50px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* ===== TESTIMONIAL TEXT ===== */
.testimonial-text {
    font-style: italic;
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 0 10px;
    font-family: 'Poppins', sans-serif;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2.5rem;
    color: rgba(255, 140, 0, 0.3);
    font-family: Georgia, serif;
    position: absolute;
    line-height: 1;
}

.testimonial-text::before {
    top: -15px;
    left: 0;
}

.testimonial-text::after {
    bottom: -30px;
    right: 0;
}

/* ===== TESTIMONIAL NAME & ROLE ===== */
.testimonial-name {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-role {
    font-size: 1rem;
    color: #FFA500;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

/* ===== SLIDE TRANSITION - DIUBAH UNTUK 4 SLIDE ===== */
#testimonial-slide-1:checked ~ .testimonial-cards-wrapper {
    transform: translateX(0%);
}

#testimonial-slide-2:checked ~ .testimonial-cards-wrapper {
    transform: translateX(-25%);
}

#testimonial-slide-3:checked ~ .testimonial-cards-wrapper {
    transform: translateX(-50%);
}

#testimonial-slide-4:checked ~ .testimonial-cards-wrapper {
    transform: translateX(-75%); /* DITAMBAHKAN */
}

/* ===== NAVIGATION BUTTONS - DIUBAH UNTUK 4 SLIDE ===== */
.testimonial-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 50;
    pointer-events: none;
}

.testimonial-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(210, 105, 30, 0.9);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 51;
}

.testimonial-btn:hover {
    background: #FF8C00;
    transform: scale(1.1);
    border-color: #FFD700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.testimonial-btn {
    display: none;
}

/* DIUBAH: Tambahkan selector untuk slide 4 */
#testimonial-slide-1:checked ~ .testimonial-navigation .btn-slide-1,
#testimonial-slide-2:checked ~ .testimonial-navigation .btn-slide-2,
#testimonial-slide-3:checked ~ .testimonial-navigation .btn-slide-3,
#testimonial-slide-4:checked ~ .testimonial-navigation .btn-slide-4 {
    display: flex;
}

/* ===== PAGINATION DOTS - DIUBAH UNTUK 4 SLIDE ===== */
.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    background: #FF8C00;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.testimonial-dot:hover {
    background: rgba(255, 140, 0, 0.3);
    border-color: #FF8C00;
    transform: scale(1.2);
}

/* DIUBAH: Tambahkan selector untuk slide 4 */
#testimonial-slide-1:checked ~ .testimonial-pagination .dot-1,
#testimonial-slide-2:checked ~ .testimonial-pagination .dot-2,
#testimonial-slide-3:checked ~ .testimonial-pagination .dot-3,
#testimonial-slide-4:checked ~ .testimonial-pagination .dot-4 {
    background: transparent;
    border-color: #FF8C00;
    transform: scale(1.3);
}

#testimonial-slide-1:checked ~ .testimonial-pagination .dot-1::before,
#testimonial-slide-2:checked ~ .testimonial-pagination .dot-2::before,
#testimonial-slide-3:checked ~ .testimonial-pagination .dot-3::before,
#testimonial-slide-4:checked ~ .testimonial-pagination .dot-4::before {
    transform: translate(-50%, -50%) scale(1);
}

/* ===== RESPONSIVE (Desktop Only) ===== */
@media (max-width: 1199px) {
    .testimonial-slider-container {
        max-width: 1000px;
        height: 450px;
    }
    
    .testimonial-photo-card {
        height: 400px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding: 0 8px;
    }
    
    .testimonial-name {
        font-size: 1.3rem;
    }
    
    .testimonial-role {
        font-size: 0.9rem;
    }
}

/* ============================================ */
/* RESPONSIVE UNTUK TABLET & MOBILE */
/* ============================================ */

/* ===== TABLET (max-width: 991px) ===== */
@media (max-width: 991px) {
    .testimonial-section {
        padding: 4rem 0;
        min-height: auto;
    }

    .testimonial-section .section-title-light {
        font-size: 2.3rem;
    }

    .testimonial-section .section-subtitle-light {
        font-size: 1.1rem;
        max-width: 600px;
        padding: 0 20px;
    }

    /* Container slider untuk tablet - 2 card */
    .testimonial-slider-container {
        max-width: 750px;
        height: 480px;
        padding: 0 15px;
    }

    .testimonial-slide {
        gap: 20px;
        padding: 0 10px;
    }

    /* Tablet: 2 card per slide */
    .testimonial-photo-card {
        width: 48%; /* 2 card dengan gap 20px = 48% + 48% + 4% gap */
        min-width: 48%;
        height: 420px;
    }

    /* Sembunyikan card ke-3 di tablet */
    .testimonial-slide .testimonial-photo-card:last-child {
        display: none;
    }

    /* Penyesuaian ukuran font di tablet */
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .testimonial-name {
        font-size: 1.3rem;
    }

    .testimonial-role {
        font-size: 0.85rem;
    }

    .testimonial-rating {
        padding: 8px 16px;
        gap: 6px;
        margin-bottom: 15px;
    }

    .rating-star {
        font-size: 16px;
    }

    .rating-score {
        font-size: 0.9rem;
        padding: 4px 10px;
        min-width: 45px;
    }

    /* Navigation buttons tablet */
    .testimonial-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    /* Pagination dots tablet */
    .testimonial-pagination {
        gap: 12px;
        margin-top: 35px;
    }

    .testimonial-dot {
        width: 12px;
        height: 12px;
    }
}

/* ===== TABLET KECIL (max-width: 768px) ===== */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 3.5rem 0;
    }

    .testimonial-section .section-title-light {
        font-size: 2rem;
    }

    .testimonial-section .section-subtitle-light {
        font-size: 1rem;
        padding: 0 25px;
    }

    .testimonial-slider-container {
        max-width: 600px;
        height: 460px;
    }

    .testimonial-photo-card {
        height: 400px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        padding: 0 8px;
    }

    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 2rem;
    }

    .testimonial-name {
        font-size: 1.2rem;
    }

    .testimonial-role {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .testimonial-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .testimonial-pagination {
        margin-top: 30px;
    }
}

/* ===== MOBILE (max-width: 576px) ===== */
@media (max-width: 576px) {
    .testimonial-section {
        padding: 3rem 0;
    }

    .testimonial-section .section-title-light {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .testimonial-section .section-title-light::after {
        width: 100px;
        height: 3px;
        bottom: -12px;
    }

    .testimonial-section .section-subtitle-light {
        font-size: 0.95rem;
        padding: 0 20px;
        line-height: 1.5;
    }

    /* Container slider untuk mobile - 1 card */
    .testimonial-slider-container {
        max-width: 100%;
        height: auto;
        min-height: 500px;
        padding: 0 20px;
    }

    .testimonial-cards-wrapper {
        transition: transform 0.5s ease-in-out;
    }

    .testimonial-slide {
        gap: 0;
        padding: 0;
        flex-wrap: nowrap;
    }

    /* Mobile: 1 card per slide */
    .testimonial-photo-card {
        width: 100%;
        min-width: 100%;
        height: 450px;
        margin: 0 auto;
    }

    /* Sembunyikan card ke-2 dan ke-3 di mobile */
    .testimonial-slide .testimonial-photo-card:nth-child(2),
    .testimonial-slide .testimonial-photo-card:nth-child(3) {
        display: none;
    }

    /* Hover effect diganti dengan touch effect di mobile */
    .testimonial-photo-card:hover {
        transform: none;
        box-shadow: none;
    }

    .photo-container:hover img {
        transform: none;
    }

    .photo-container:hover .photo-info-overlay {
        opacity: 1; /* Tetap muncul di mobile */
    }

    /* Border lebih tebal di mobile */
    .photo-container {
        border-width: 2px;
    }

    /* Penyesuaian overlay di mobile */
    .photo-info-overlay {
        padding: 25px 20px;
        background: linear-gradient(
            to bottom,
            rgba(93, 41, 6, 0.5) 0%,
            rgba(93, 41, 6, 0.8) 40%,
            rgba(93, 41, 6, 0.98) 100%
        );
    }

    /* Typography mobile */
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
        padding: 0 12px;
    }

    .testimonial-text::before {
        top: -12px;
        left: 5px;
        font-size: 2rem;
    }

    .testimonial-text::after {
        bottom: -25px;
        right: 5px;
        font-size: 2rem;
    }

    .testimonial-name {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }

    .testimonial-role {
        font-size: 0.85rem;
    }

    .testimonial-rating {
        padding: 8px 16px;
        margin-bottom: 18px;
    }

    .rating-star {
        font-size: 16px;
    }

    .rating-score {
        font-size: 0.85rem;
        padding: 4px 10px;
        min-width: 40px;
    }

    /* Navigation buttons mobile */
    .testimonial-navigation {
        top: 45%;
    }

    .testimonial-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        background: rgba(210, 105, 30, 0.95);
        border-width: 1.5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .testimonial-btn:active {
        background: #FF8C00;
        transform: scale(0.95);
    }

    /* Pagination dots mobile */
    .testimonial-pagination {
        gap: 10px;
        margin-top: 25px;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
        border-width: 1.5px;
    }

    .testimonial-dot::before {
        width: 5px;
        height: 5px;
    }

    #testimonial-slide-1:checked ~ .testimonial-pagination .dot-1,
    #testimonial-slide-2:checked ~ .testimonial-pagination .dot-2,
    #testimonial-slide-3:checked ~ .testimonial-pagination .dot-3,
    #testimonial-slide-4:checked ~ .testimonial-pagination .dot-4 {
        transform: scale(1.2);
    }

    /* Perbaikan video background di mobile */
    .video-background-container {
        filter: brightness(0.5);
    }

    .video-background {
        filter: brightness(0.6) sepia(0.2);
    }

    .overlay-texture {
        opacity: 0.2;
    }
}

/* ===== MOBILE KECIL (max-width: 375px) ===== */
@media (max-width: 375px) {
    .testimonial-section {
        padding: 2.5rem 0;
    }

    .testimonial-section .section-title-light {
        font-size: 1.6rem;
    }

    .testimonial-section .section-subtitle-light {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .testimonial-slider-container {
        min-height: 480px;
        padding: 0 15px;
    }

    .testimonial-photo-card {
        height: 430px;
    }

    .photo-info-overlay {
        padding: 20px 15px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .testimonial-name {
        font-size: 1.2rem;
    }

    .testimonial-role {
        font-size: 0.8rem;
    }

    .testimonial-rating {
        padding: 6px 14px;
        margin-bottom: 15px;
    }

    .rating-star {
        font-size: 14px;
    }

    .rating-score {
        font-size: 0.8rem;
        padding: 3px 8px;
        min-width: 38px;
    }

    .testimonial-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .testimonial-pagination {
        gap: 8px;
        margin-top: 20px;
    }

    .testimonial-dot {
        width: 9px;
        height: 9px;
    }
}

/* ===== LANDSCAPE MODE (Mobile Horizontal) ===== */
@media (max-width: 991px) and (orientation: landscape) {
    .testimonial-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .testimonial-slider-container {
        height: 400px;
    }

    .testimonial-photo-card {
        height: 350px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .testimonial-name {
        font-size: 1.2rem;
    }

    .testimonial-role {
        font-size: 0.8rem;
    }

    .testimonial-pagination {
        margin-top: 20px;
    }

    /* Atur ulang jumlah card di landscape */
    @media (max-width: 991px) and (orientation: landscape) {
        .testimonial-photo-card {
            width: 48%;
            min-width: 48%;
        }
    }

    @media (max-width: 576px) and (orientation: landscape) {
        .testimonial-photo-card {
            width: 100%;
            min-width: 100%;
        }
        
        .testimonial-slide .testimonial-photo-card:nth-child(2) {
            display: none;
        }
    }
}

/* ===== PERBAIKAN UNTUK CARD DI SETIAP SLIDE ===== */
/* Tablet: tampilkan 2 card */
@media (min-width: 577px) and (max-width: 991px) {
    .testimonial-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .testimonial-photo-card {
        display: block; /* Tampilkan */
    }

    .testimonial-slide .testimonial-photo-card:last-child {
        display: none; /* Sembunyikan card ke-3 */
    }
}

/* Mobile: tampilkan 1 card */
@media (max-width: 576px) {
    .testimonial-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .testimonial-photo-card {
        display: block; /* Tampilkan card pertama */
    }

    .testimonial-slide .testimonial-photo-card:nth-child(2),
    .testimonial-slide .testimonial-photo-card:nth-child(3) {
        display: none; /* Sembunyikan card ke-2 dan ke-3 */
    }
}

/* ===== PERBAIKAN STRUKTUR SLIDER UNTUK RESPONSIVE ===== */
/* Pastikan slide tetap proporsional */
@media (max-width: 991px) {
    .testimonial-slider-container {
        overflow: visible; /* Perbaiki overflow */
    }

    .testimonial-cards-wrapper {
        height: 100%;
    }

    .testimonial-slide {
        flex-wrap: nowrap;
    }
}

/* ===== ANIMASI YANG LEBIH HALUS DI MOBILE ===== */
@media (max-width: 768px) {
    .testimonial-cards-wrapper {
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .testimonial-photo-card {
        transition: border-color 0.3s ease;
    }

    .photo-info-overlay {
        transition: opacity 0.3s ease;
    }
}

/* ===== PERBAIKAN TOUCH RESPONSIVE ===== */
@media (max-width: 991px) {
    .testimonial-btn {
        -webkit-tap-highlight-color: transparent;
    }

    .testimonial-btn:active {
        background: #FF8C00;
        transform: scale(0.95);
    }

    .testimonial-dot {
        -webkit-tap-highlight-color: transparent;
    }

    .testimonial-dot:active {
        background: rgba(255, 140, 0, 0.5);
    }
}

/* ===== PERBAIKAN UNTUK TABLET LANDSCAPE ===== */
@media (min-width: 992px) and (max-width: 1199px) {
    .testimonial-slider-container {
        max-width: 950px;
    }

    .testimonial-photo-card {
        width: 30%;
        height: 430px;
    }
}







/* ========== VIDEO SECTION ========== */
/* ============================================
   SECTION UTAMA - BACKGROUND & CONTAINER
   ============================================ */

.video-gallery-section {
    background-color: var(--coklat-tua);
    color: var(--coklat-krem);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Background Pattern dengan Parallax Effect */
.video-gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 152, 0, 0.08) 0px, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(185, 92, 30, 0.08) 0px, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(139, 69, 19, 0.05) 0px, transparent 40%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

/* Decorative Elements */
.video-gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FF9800 25%, 
        #B95C1E 50%, 
        #FF9800 75%, 
        transparent 100%);
    opacity: 0.5;
}

.video-gallery-section .container-fluid {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    padding: 0 20px;
}

/* ============================================
   HEADER SECTION - COMPACT SPACING
   ============================================ */

.video-gallery-section .row.justify-content-center {
    margin-bottom: 25px !important;
}

.video-section-title {
    color: #FFFFFF;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 
        0 2px 10px rgba(0,0,0,0.5),
        0 5px 20px rgba(185, 92, 30, 0.3),
        0 8px 30px rgba(255, 152, 0, 0.2);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
    line-height: 1.2;
    animation: titleFadeIn 0.8s ease-out;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #FF9800 20%, 
        #B95C1E 50%, 
        #FF9800 80%, 
        transparent 100%);
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(255, 152, 0, 0.5);
}

.video-section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.6;
    max-width: 650px;
    margin: 12px auto 0;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: subtitleFadeIn 0.8s ease-out 0.2s backwards;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   HORIZONTAL SCROLL CONTAINER - COMPACT
   ============================================ */

.video-scroll-container {
    position: relative;
    padding: 0;
    margin: 30px 0 0;
    overflow: hidden;
}

.video-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 15px 20px 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 152, 0, 0.5) rgba(62, 39, 35, 0.3);
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

/* Custom Scrollbar Styling */
.video-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.video-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(62, 39, 35, 0.3);
    border-radius: 20px;
    margin: 0 20px;
}

.video-scroll-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #FF9800, #B95C1E);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.video-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #FFB74D, #D2691E);
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

/* ============================================
   VIDEO CARD - MODERN COMPACT DESIGN
   ============================================ */

.video-card-item {
    flex: 0 0 auto;
    width: 360px;
    scroll-snap-align: start;
    animation: cardFadeIn 0.6s ease-out backwards;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stagger animation for cards */
.video-card-item:nth-child(1) { animation-delay: 0.1s; }
.video-card-item:nth-child(2) { animation-delay: 0.2s; }
.video-card-item:nth-child(3) { animation-delay: 0.3s; }
.video-card-item:nth-child(4) { animation-delay: 0.4s; }
.video-card-item:nth-child(5) { animation-delay: 0.5s; }
.video-card-item:nth-child(6) { animation-delay: 0.6s; }
.video-card-item:nth-child(7) { animation-delay: 0.7s; }
.video-card-item:nth-child(8) { animation-delay: 0.8s; }
.video-card-item:nth-child(9) { animation-delay: 0.9s; }

.video-card {
    background: linear-gradient(135deg, #2c1812 0%, #3a1f1a 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 10px 35px -10px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 152, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

/* Gradient Border Effect */
.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #FF9800, #B95C1E, #8B4513);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-card:hover::before {
    opacity: 1;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 50px -15px rgba(255, 152, 0, 0.4),
        0 0 0 1px rgba(255, 152, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 30px rgba(185, 92, 30, 0.2);
}

/* ============================================
   VIDEO WRAPPER & PLAYER - COMPACT
   ============================================ */

.video-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #000;
    border-radius: 18px 18px 0 0;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-card:hover .video-wrapper::after {
    opacity: 1;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.video-card:hover .video-player {
    transform: scale(1.08);
}

/* Play Button Overlay */
.video-wrapper::before {
    content: '\f04b';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(255, 152, 0, 0.95);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.2);
    padding-left: 5px;
}

.video-card:hover .video-wrapper::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   VIDEO CONTENT - COMPACT TEXT
   ============================================ */

.video-content {
    padding: 18px 20px;
    background: linear-gradient(to bottom, #2c1812 0%, #3a1f1a 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    position: relative;
}

.video-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 152, 0, 0.3) 50%, 
        transparent 100%);
}

.video-title {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.video-card:hover .video-title {
    color: #FFB74D;
}

.video-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card:hover .video-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   SCROLL HINT - COMPACT
   ============================================ */

.scroll-hint {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 20px;
    text-align: center;
    animation: bounceHorizontal 2.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@keyframes bounceHorizontal {
    0%, 100% { 
        transform: translateX(0); 
        opacity: 0.7;
    }
    50% { 
        transform: translateX(12px); 
        opacity: 1;
    }
}

.scroll-hint i {
    color: #FF9800;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   BUTTON - COMPACT SPACING
   ============================================ */

.video-gallery-section .text-center.mt-5 {
    margin-top: 2rem !important;
}

.btn-video-full {
    background: linear-gradient(135deg, #FF9800 0%, #B95C1E 100%);
    color: white;
    border: 2px solid transparent;
    padding: 13px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 25px -5px rgba(255, 152, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-video-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.btn-video-full:hover::before {
    left: 100%;
}

.btn-video-full:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #FFB74D 0%, #D2691E 100%);
    color: white;
    box-shadow: 
        0 15px 40px -10px rgba(255, 152, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-video-full i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-video-full:hover i {
    transform: translateX(5px) rotate(15deg);
}

/* ============================================
   DESKTOP - EXACTLY 3 CARDS VISIBLE
   ============================================ */

@media (min-width: 1200px) {
    .video-gallery-section {
        padding: 70px 0;
    }
    
    .video-scroll-container {
        max-width: 1140px;
        margin: 30px auto 0;
        overflow: hidden;
    }
    
    .video-scroll-wrapper {
        justify-content: center;
        gap: 20px;
        padding: 15px 0 20px;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .video-card-item {
        width: 360px;
    }
    
    .video-card {
        height: 410px;
    }
    
    .video-wrapper {
        height: 270px;
    }
    
    /* Show exactly 3 cards calculation: 
       Container width: 1140px
       Card width: 360px
       Gap: 20px
       Total: (360 * 3) + (20 * 2) = 1120px (fits perfectly)
    */
}

@media (min-width: 1400px) {
    .video-scroll-container {
        max-width: 1200px;
    }
    
    .video-card-item {
        width: 380px;
    }
    
    .video-card {
        height: 420px;
    }
    
    .video-wrapper {
        height: 280px;
    }
    
    /* 3 cards: (380 * 3) + (20 * 2) = 1180px */
}

/* ============================================
   LARGE DESKTOP - EXACTLY 3 CARDS
   ============================================ */

@media (min-width: 1600px) {
    .video-scroll-container {
        max-width: 1260px;
    }
    
    .video-scroll-wrapper {
        gap: 25px;
    }
    
    .video-card-item {
        width: 400px;
    }
    
    .video-card {
        height: 440px;
    }
    
    .video-wrapper {
        height: 300px;
    }
    
    /* 3 cards: (400 * 3) + (25 * 2) = 1250px */
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.video-card:focus-visible {
    outline: 3px solid #FF9800;
    outline-offset: 4px;
}

.btn-video-full:focus-visible {
    outline: 3px solid #FF9800;
    outline-offset: 4px;
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    .video-gallery-section::before,
    .video-card,
    .video-player,
    .scroll-hint,
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .video-gallery-section {
        padding: 20px 0;
        background: white;
    }
    
    .video-card {
        border: 1px solid #ccc;
        box-shadow: none;
        page-break-inside: avoid;
    }
    
    .scroll-hint,
    .btn-video-full {
        display: none;
    }
}

/* ============================================ */
/* RESPONSIVE UNTUK TABLET & MOBILE */
/* VIDEO GALLERY - HORIZONTAL SCROLL */
/* FIX: Mobile HANYA 1 CARD, Tablet HANYA 2 CARD */
/* ============================================ */

/* ===== TABLET LANDSCAPE & PORTRAIT (max-width: 1199px) ===== */
@media (max-width: 1199px) {
    .video-gallery-section {
        padding: 50px 0;
    }

    .video-gallery-section .container-fluid {
        max-width: 100%;
        padding: 0 15px;
    }

    /* Header - lebih compact */
    .video-gallery-section .row.justify-content-center {
        margin-bottom: 20px !important;
    }

    .video-section-title {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }

    .video-section-title::after {
        width: 90px;
        height: 3.5px;
        bottom: -6px;
    }

    .video-section-subtitle {
        font-size: 1rem;
        max-width: 550px;
        margin: 10px auto 0;
        padding: 0 20px;
    }

    /* Container scroll */
    .video-scroll-container {
        margin: 25px 0 0;
        padding: 0;
        overflow: hidden;
    }

    .video-scroll-wrapper {
        gap: 18px;
        padding: 12px 15px 18px;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
    }

    /* Tablet: 2 card - ukuran tetap proporsional */
    .video-card-item {
        width: calc((100vw - 48px) / 2);
        min-width: 320px;
        max-width: 380px;
        flex: 0 0 auto;
    }

    .video-card {
        height: 380px;
        border-radius: 18px;
    }

    .video-wrapper {
        height: 240px;
    }

    .video-wrapper::before {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .video-content {
        padding: 16px 18px;
    }

    .video-title {
        font-size: 1.2rem;
    }

    .video-desc {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }

    /* Scroll hint */
    .scroll-hint {
        margin-top: 15px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .scroll-hint i {
        font-size: 1.1rem;
    }

    /* Button */
    .video-gallery-section .text-center.mt-5 {
        margin-top: 1.5rem !important;
    }

    .btn-video-full {
        padding: 12px 32px;
        font-size: 0.95rem;
    }
}

/* ===== TABLET (max-width: 991px) ===== */
@media (max-width: 991px) {
    .video-gallery-section {
        padding: 45px 0;
    }

    .video-section-title {
        font-size: 2.2rem;
    }

    .video-section-title::after {
        width: 80px;
        height: 3px;
    }

    .video-section-subtitle {
        font-size: 0.98rem;
        max-width: 500px;
    }

    /* Container scroll - Tablet: 2 card */
    .video-scroll-wrapper {
        gap: 16px;
        padding: 10px 15px 16px;
    }

    .video-card-item {
        width: calc((100vw - 46px) / 2);
        min-width: 300px;
        max-width: 360px;
    }

    .video-card {
        height: 360px;
    }

    .video-wrapper {
        height: 220px;
    }

    .video-wrapper::before {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .video-content {
        padding: 14px 16px;
        gap: 5px;
    }

    .video-title {
        font-size: 1.15rem;
    }

    .video-desc {
        font-size: 0.88rem;
        -webkit-line-clamp: 2;
    }

    .scroll-hint {
        margin-top: 12px;
        opacity: 0.8;
    }

    @keyframes bounceHorizontal {
        0%, 100% { transform: translateX(0); opacity: 0.6; }
        50% { transform: translateX(10px); opacity: 1; }
    }
}

/* ===== TABLET KECIL (max-width: 768px) ===== */
@media (max-width: 768px) {
    .video-gallery-section {
        padding: 40px 0;
    }

    .video-section-title {
        font-size: 2rem;
    }

    .video-section-title::after {
        width: 70px;
        height: 3px;
        bottom: -5px;
    }

    .video-section-subtitle {
        font-size: 0.95rem;
        max-width: 450px;
        padding: 0 15px;
        line-height: 1.5;
    }

    /* Container scroll - Tablet kecil tetap 2 card */
    .video-scroll-wrapper {
        gap: 15px;
        padding: 8px 12px 15px;
    }

    .video-card-item {
        width: calc((100vw - 42px) / 2);
        min-width: 280px;
        max-width: 340px;
    }

    .video-card {
        height: 340px;
        border-radius: 16px;
    }

    .video-wrapper {
        height: 200px;
    }

    .video-wrapper::before {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .video-content {
        padding: 12px 14px;
    }

    .video-title {
        font-size: 1.1rem;
    }

    .video-desc {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }

    .scroll-hint {
        margin-top: 10px;
        font-size: 0.85rem;
    }

    .btn-video-full {
        padding: 10px 28px;
        font-size: 0.9rem;
    }
}

/* ===== MOBILE (max-width: 576px) ===== */
@media (max-width: 576px) {
    .video-gallery-section {
        padding: 35px 0;
    }

    .video-gallery-section .container-fluid {
        padding: 0 10px;
    }

    /* Header mobile - lebih kompak */
    .video-gallery-section .row.justify-content-center {
        margin-bottom: 15px !important;
    }

    .video-section-title {
        font-size: 1.8rem;
        margin-bottom: 6px;
        padding: 0 10px;
    }

    .video-section-title::after {
        width: 60px;
        height: 2.5px;
        bottom: -4px;
    }

    .video-section-subtitle {
        font-size: 0.9rem;
        max-width: 100%;
        margin: 8px auto 0;
        padding: 0 15px;
        line-height: 1.5;
    }

    /* ===== FIX: MOBILE HANYA 1 CARD ===== */
    .video-scroll-container {
        margin: 20px 0 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .video-scroll-wrapper {
        display: flex;
        flex-wrap: nowrap;
        gap: 0; /* HILANGKAN GAP AGAR CARD RAPAT */
        padding: 5px 0 15px;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        justify-content: flex-start;
    }

    /* Mobile: HANYA 1 card yang terlihat - sisanya di-scroll */
    .video-card-item {
        width: calc(100vw - 20px); /* Full width dengan sedikit padding */
        min-width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        flex: 0 0 auto;
        margin: 0 10px; /* Margin kanan kiri untuk spacing */
        scroll-snap-align: center;
    }

    /* HANYA CARD PERTAMA YANG TAMPAK PENUH, CARD LAINNYA UNTUK SCROLL */
    .video-card-item:first-child {
        margin-left: 10px;
    }

    .video-card-item:last-child {
        margin-right: 10px;
    }

    .video-card {
        height: 360px;
        border-radius: 16px;
        border: 1.5px solid rgba(255, 152, 0, 0.2);
        width: 100%;
    }

    .video-wrapper {
        height: 220px;
    }

    .video-wrapper::before {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        background: rgba(255, 152, 0, 0.98);
        opacity: 0.9;
    }

    /* Hover effect nonaktif di mobile */
    .video-card:hover {
        transform: none;
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
    }

    .video-card:active {
        transform: scale(0.98);
    }

    .video-card:hover .video-player {
        transform: none;
    }

    .video-card:hover .video-wrapper::before {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1);
    }

    .video-card:hover .video-title {
        color: #FFFFFF;
    }

    /* Video content mobile */
    .video-content {
        padding: 14px 16px;
        gap: 5px;
    }

    .video-title {
        font-size: 1.15rem;
    }

    .video-desc {
        font-size: 0.88rem;
        -webkit-line-clamp: 2;
        color: rgba(255, 255, 255, 0.8);
    }

    /* Scroll hint mobile */
    .scroll-hint {
        margin-top: 12px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.85);
        gap: 8px;
        animation: bounceHorizontal 2s ease-in-out infinite;
    }

    .scroll-hint i {
        font-size: 1.1rem;
        color: #FF9800;
    }

    /* Button mobile */
    .video-gallery-section .text-center.mt-5 {
        margin-top: 1.2rem !important;
    }

    .btn-video-full {
        padding: 10px 24px;
        font-size: 0.85rem;
        border-radius: 40px;
        gap: 8px;
    }

    .btn-video-full i {
        font-size: 1rem;
    }

    /* Custom scrollbar mobile */
    .video-scroll-wrapper::-webkit-scrollbar {
        height: 3px;
    }

    .video-scroll-wrapper::-webkit-scrollbar-track {
        margin: 0 10px;
        background: rgba(62, 39, 35, 0.2);
    }

    .video-scroll-wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #FF9800, #B95C1E);
        border-radius: 10px;
    }
}

/* ===== MOBILE KECIL (max-width: 375px) ===== */
@media (max-width: 375px) {
    .video-gallery-section {
        padding: 30px 0;
    }

    .video-section-title {
        font-size: 1.6rem;
    }

    .video-section-title::after {
        width: 50px;
        height: 2.5px;
        bottom: -4px;
    }

    .video-section-subtitle {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    .video-card-item {
        width: calc(100vw - 20px);
        min-width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        margin: 0 10px;
    }

    .video-card {
        height: 340px;
    }

    .video-wrapper {
        height: 200px;
    }

    .video-wrapper::before {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .video-content {
        padding: 12px 14px;
    }

    .video-title {
        font-size: 1.1rem;
    }

    .video-desc {
        font-size: 0.82rem;
        -webkit-line-clamp: 2;
    }

    .scroll-hint {
        font-size: 0.8rem;
        margin-top: 10px;
    }

    .btn-video-full {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* ===== LANDSCAPE MODE (Mobile & Tablet Horizontal) ===== */
@media (max-width: 991px) and (orientation: landscape) {
    .video-gallery-section {
        padding: 30px 0;
    }

    .video-section-title {
        font-size: 1.8rem;
    }

    .video-section-subtitle {
        font-size: 0.9rem;
        max-width: 80%;
    }

    .video-scroll-wrapper {
        gap: 15px;
        padding: 8px 15px 15px;
    }

    .video-card-item {
        width: calc((100vw - 45px) / 2);
        min-width: 280px;
    }

    .video-card {
        height: 300px;
    }

    .video-wrapper {
        height: 180px;
    }

    .video-content {
        padding: 10px 14px;
    }

    .video-title {
        font-size: 1rem;
    }

    .video-desc {
        font-size: 0.8rem;
    }

    /* Landscape mobile - 1 card */
    @media (max-width: 576px) and (orientation: landscape) {
        .video-card-item {
            width: calc(100vw - 40px);
            min-width: calc(100vw - 40px);
            max-width: calc(100vw - 40px);
            margin: 0 15px;
        }

        .video-card {
            height: 280px;
        }

        .video-wrapper {
            height: 160px;
        }

        .video-card-item:first-child {
            margin-left: 15px;
        }

        .video-card-item:last-child {
            margin-right: 15px;
        }
    }
}

/* ===== FIX: MOBILE PASTIKAN HANYA 1 CARD TERLIHAT ===== */
@media (max-width: 576px) {
    /* Pastikan wrapper bisa scroll horizontal */
    .video-scroll-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    
    /* Setiap card mengambil FULL WIDTH viewport */
    .video-card-item {
        flex: 0 0 auto;
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        scroll-snap-align: center;
    }
    
    /* HILANGKAN SEMUA GAP antar card */
    .video-scroll-wrapper {
        gap: 0 !important;
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Pastikan tidak ada margin yang membuat card ke-2 terlihat */
    .video-card-item {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    /* Card pertama dan terakhir marginnya sama */
    .video-card-item:first-child {
        margin-left: 10px;
    }
    
    .video-card-item:last-child {
        margin-right: 10px;
    }
}

/* ===== FIX: TABLET PASTIKAN 2 CARD ===== */
@media (min-width: 577px) and (max-width: 991px) {
    .video-scroll-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
    }
    
    .video-card-item {
        flex: 0 0 auto;
        width: calc((100vw - 48px) / 2);
        min-width: 280px;
        scroll-snap-align: start;
    }
    
    /* Hilangkan margin berlebih */
    .video-card-item {
        margin: 0;
    }
    
    .video-card-item:first-child {
        margin-left: 15px;
    }
    
    .video-card-item:last-child {
        margin-right: 15px;
    }
}

/* ===== PERBAIKAN UNTUK CARD SPACING ===== */
@media (max-width: 1199px) {
    .video-card::before {
        display: none;
    }

    .video-card {
        border: 1px solid rgba(255, 152, 0, 0.15);
    }

    .video-card:hover {
        border-color: rgba(255, 152, 0, 0.4);
    }

    .video-gallery-section::before {
        animation: none;
        opacity: 0.3;
    }
}

/* ===== PERBAIKAN UNTUK PERFORMANCE ===== */
@media (max-width: 768px) {
    .video-card-item {
        animation: none;
        opacity: 1;
    }

    .video-section-title {
        animation: none;
    }

    .video-section-subtitle {
        animation: none;
    }

    .video-content::before {
        left: 12px;
        right: 12px;
        opacity: 0.2;
    }
}

/* ===== PERBAIKAN UNTUK TOUCH DEVICE ===== */
@media (hover: none) and (pointer: coarse) {
    .video-wrapper::before {
        opacity: 0.8 !important;
    }

    .video-card:hover {
        transform: none;
    }

    .video-card:active {
        transform: scale(0.98);
    }

    .btn-video-full:hover {
        transform: none;
        background: linear-gradient(135deg, #FF9800 0%, #B95C1E 100%);
    }

    .btn-video-full:active {
        transform: scale(0.95);
    }
}






/* ========== LOCATION SECTION ========== */
/* Location Section Styling */
.location-section {
    background: var(--coklat-tua);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.location-section .container {
    position: relative;
    z-index: 1;
}

/* Section Title */
.location-section .section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.location-section .section-subtitle {
    color: #e0e0e0 !important;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Location Info */
.location-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.location-info h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* Contact Info */
.contact-info p {
    color: #f5f5f5;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    line-height: 1.8;
    transition: transform 0.3s ease;
}

.contact-info p:hover {
    transform: translateX(5px);
}

.contact-info i {
    font-size: 1.3rem;
    min-width: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Colorful Icons */
.contact-info .bi-geo-alt-fill {
    color: #ff5252;
}

.contact-info .bi-whatsapp {
    color: #25D366;
}

.contact-info .bi-clock-fill {
    color: #ffc107;
}

.contact-info .bi-instagram {
    color: #E4405F;
}

/* Facilities Section */
.facilities {
    margin-top: 2rem;
}

.facilities h5 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.facilities p {
    color: #f5f5f5;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.facilities p:hover {
    transform: translateX(5px);
}

.facilities .bi-check-circle {
    color: #4caf50;
    font-size: 1.2rem;
    margin-right: 0.8rem;
}

/* Location Map Container */
.location-map {
    height: 100% !important;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.15);
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.location-map .ratio {
    height: 100%;
}

.location-map iframe {
    width: 100%;
    height: 200%;
    filter: brightness(0.9) contrast(1.1);
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 991px) {
    .location-section .section-title {
        font-size: 2rem;
    }
    
    /* Reorder: Map first, then info */
    .location-section .row.align-items-center {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .location-info {
        padding: 2rem;
        margin-bottom: 0;
        margin-top: 2rem;
        text-align: left;
    }
    
    .location-info h3 {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .location-map {
        min-height: 400px;
        margin-bottom: 0;
    }
    
    .col-lg-6.mb-5.mb-lg-0 {
        margin-bottom: 0 !important;
    }
    
    /* Force left alignment */
    .contact-info,
    .facilities {
        text-align: left;
    }
    
    .contact-info p,
    .facilities p {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .location-section {
        padding: 3rem 0 !important;
    }
    
    .location-section .py-5 {
        padding: 2rem 0 !important;
    }
    
    .location-section .section-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }
    
    .location-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .location-section .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    /* Map styling */
    .location-map {
        min-height: 350px;
        border-radius: 15px;
        margin-bottom: 0;
    }
    
    /* Info box styling - FORCE LEFT ALIGNMENT */
    .location-info {
        padding: 1.8rem;
        margin-top: 1.5rem;
        border-radius: 15px;
        text-align: left !important;
    }
    
    .location-info * {
        text-align: left !important;
    }
    
    .location-info h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
        text-align: left !important;
    }
    
    /* Contact info - STRICT LEFT ALIGNMENT */
    .contact-info {
        margin-bottom: 1.5rem !important;
        text-align: left !important;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
        line-height: 1.6;
        width: 100%;
    }
    
    .contact-info i {
        font-size: 1.1rem;
        min-width: 30px !important;
        width: 30px !important;
        margin-right: 0.75rem !important;
        margin-left: 0 !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        text-align: center !important;
    }
    
    /* Facilities - STRICT LEFT ALIGNMENT */
    .facilities {
        margin-top: 1.5rem !important;
        margin-bottom: 0 !important;
        text-align: left !important;
    }
    
    .facilities h5 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        text-align: left !important;
    }
    
    .facilities p {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        width: 100%;
    }
    
    .facilities .bi-check-circle {
        font-size: 1.1rem;
        min-width: 24px !important;
        width: 24px !important;
        margin-right: 0.7rem !important;
        margin-left: 0 !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .facilities .row {
        margin: 0;
        text-align: left !important;
    }
    
    .facilities .col-6 {
        padding: 0;
        padding-right: 0.5rem;
        text-align: left !important;
    }
}

@media (max-width: 575px) {
    .location-section {
        padding: 2.5rem 0 !important;
    }
    
    .location-section .py-5 {
        padding: 1.5rem 0 !important;
    }
    
    .location-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .location-section .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .location-section .mb-5 {
        margin-bottom: 1.5rem !important;
    }
    
    /* Map styling */
    .location-map {
        min-height: 280px;
        border-radius: 12px;
    }
    
    /* Info box - FORCE LEFT */
    .location-info {
        padding: 1.5rem;
        margin-top: 1.2rem;
        border-radius: 12px;
        text-align: left !important;
    }
    
    .location-info * {
        text-align: left !important;
    }
    
    .location-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        padding-bottom: 0.7rem;
        text-align: left !important;
    }
    
    /* Contact info - ULTRA STRICT LEFT */
    .contact-info {
        margin-bottom: 1.2rem !important;
        text-align: left !important;
    }
    
    .contact-info p {
        font-size: 0.85rem;
        margin-bottom: 0.7rem;
        line-height: 1.6;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
        width: 100%;
    }
    
    .contact-info i {
        font-size: 1rem;
        min-width: 28px !important;
        width: 28px !important;
        margin-right: 0.6rem !important;
        margin-left: 0 !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        text-align: center !important;
    }
    
    /* Facilities - ULTRA STRICT LEFT */
    .facilities {
        margin-top: 1.2rem !important;
        margin-bottom: 0 !important;
        text-align: left !important;
    }
    
    .facilities h5 {
        font-size: 1.05rem;
        margin-bottom: 0.8rem;
        text-align: left !important;
    }
    
    .facilities p {
        font-size: 0.82rem;
        margin-bottom: 0.6rem;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        width: 100%;
    }
    
    .facilities .bi-check-circle {
        font-size: 0.95rem;
        min-width: 22px !important;
        width: 22px !important;
        margin-right: 0.6rem !important;
        margin-left: 0 !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
    
    /* Stack facilities in single column */
    .facilities .col-6 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        text-align: left !important;
    }
    
    .facilities .row {
        margin: 0 !important;
        text-align: left !important;
    }
}

@media (max-width: 400px) {
    .location-section .section-title {
        font-size: 1.35rem;
    }
    
    .location-section .section-subtitle {
        font-size: 0.85rem;
    }
    
    .location-info {
        padding: 1.2rem;
        text-align: left !important;
    }
    
    .location-info h3 {
        font-size: 1.1rem;
        text-align: left !important;
    }
    
    .location-map {
        min-height: 250px;
    }
    
    .contact-info {
        text-align: left !important;
    }
    
    .contact-info p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        text-align: left !important;
    }
    
    .contact-info i {
        min-width: 26px !important;
        width: 26px !important;
        font-size: 0.95rem;
        margin-right: 0.5rem !important;
        margin-left: 0 !important;
    }
    
    .facilities {
        text-align: left !important;
    }
    
    .facilities p {
        font-size: 0.78rem;
        margin-bottom: 0.5rem;
        text-align: left !important;
    }
    
    .facilities .bi-check-circle {
        min-width: 20px !important;
        width: 20px !important;
        font-size: 0.9rem;
        margin-right: 0.5rem !important;
        margin-left: 0 !important;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-info,
.location-map {
    animation: fadeInUp 0.8s ease-out;
}

.location-map {
    animation-delay: 0.2s;
}

/* Hover Effects */
.location-info {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.location-map {
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.location-map:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.01);
}

/* Remove default Bootstrap margins on mobile */
@media (max-width: 991px) {
    .location-section .mb-5.mb-lg-0 {
        margin-bottom: 0 !important;
    }
    
    .location-section .col-lg-6:last-child {
        margin-bottom: 0 !important;
    }
}

/* GLOBAL OVERRIDE - Force everything left aligned */
@media (max-width: 991px) {
    .location-info,
    .location-info *,
    .contact-info,
    .contact-info *,
    .facilities,
    .facilities * {
        text-align: left !important;
    }
    
    .contact-info p,
    .facilities p {
        justify-content: flex-start !important;
    }
}






/* ========== FOOTER ========== */
.footer {
    background: var(--coklat-tua) !important;
    border-top: 3px solid var(--coklat-terang);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

/* Logo Styling */
.footer img {
    height: 80px !important;
    width: auto !important;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1rem !important;
    filter: brightness(1.1);
    display: block;
}

/* Text Styling */
.footer p, 
.footer a,
.footer li {
    color: #e0e0e0 !important;
    opacity: 0.95;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.footer h5 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, transparent);
    border-radius: 2px;
}

/* Links Styling */
.footer a {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #d4af37 !important;
    opacity: 1;
    padding-left: 8px;
    text-decoration: none;
}

.footer .list-unstyled {
    padding-left: 0;
    margin-bottom: 0;
}

.footer .list-unstyled li {
    margin-bottom: 0.75rem;
}

.footer .list-unstyled li:last-child {
    margin-bottom: 0;
}

/* Contact Info Icons */
.footer .bi {
    color: #d4af37;
    font-size: 1.1rem;
    min-width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* HR Divider */
.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 0.3;
    margin: 2.5rem 0;
}

/* Copyright */
.footer .text-center p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Desktop View */
@media (min-width: 992px) {
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer img {
        height: 90px !important;
        max-width: 220px;
    }
    
    .footer h5 {
        font-size: 1.5rem;
    }
    
    .footer p,
    .footer a,
    .footer li {
        font-size: 1rem;
    }
}

/* Tablet View */
/* Tablet View */
@media (min-width: 768px) and (max-width: 991px) {
    .footer {
        padding: 3.5rem 0 2rem;
    }
    
    .footer img {
        height: 75px !important;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer .col-lg-4 {
        text-align: center;
        margin-bottom: 2.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer .col-lg-4:last-child {
        margin-bottom: 0;
    }
    
    .footer h5 {
        font-size: 1.35rem;
        width: 100%;
        text-align: center;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Logo section text center */
    .footer .col-lg-4:first-child p {
        text-align: center;
        max-width: 400px;
    }
    
    /* Link Cepat - inline block with left align */
    .footer .list-unstyled {
        display: inline-block;
        text-align: left;
    }
    
    .footer .list-unstyled li {
        text-align: left;
    }
    
    /* Hubungi Kami - container centered, content left aligned and properly spaced */
    .footer .col-lg-4:last-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer .col-lg-4:last-child p {
        text-align: left !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        width: 100%;
        max-width: 320px;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }
    
    .footer .col-lg-4:last-child p:last-of-type {
        margin-bottom: 0;
    }
    
    .footer .col-lg-4:last-child .bi {
        font-size: 1.1rem;
        min-width: 28px !important;
        width: 28px !important;
        margin-right: 0.75rem !important;
        margin-left: 0 !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        justify-content: flex-start !important;
        align-items: center;
    }
    
    .footer p,
    .footer a,
    .footer li {
        font-size: 0.95rem;
    }
}

/* Mobile View */
@media (max-width: 767px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer img {
        height: 70px !important;
        max-width: 180px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer .col-lg-4 {
        text-align: center;
        margin-bottom: 2.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer .col-lg-4:last-child {
        margin-bottom: 0;
    }
    
    .footer h5 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
        width: 100%;
        text-align: center;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Logo section text center */
    .footer .col-lg-4:first-child p {
        text-align: center;
        font-size: 0.9rem;
        max-width: 350px;
    }
    
    /* Link Cepat - inline block with left align */
    .footer .list-unstyled {
        display: inline-block;
        text-align: left;
    }
    
    .footer .list-unstyled li {
        margin-bottom: 0.7rem;
        text-align: left;
    }
    
    /* Hubungi Kami - PERFECT ALIGNMENT */
    .footer .col-lg-4:last-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer .col-lg-4:last-child p {
        text-align: left !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        width: 100%;
        max-width: 300px;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }
    
    .footer .col-lg-4:last-child p:last-of-type {
        margin-bottom: 0;
    }
    
    .footer .col-lg-4:last-child .bi {
        font-size: 1.05rem;
        min-width: 26px !important;
        width: 26px !important;
        margin-right: 0.7rem !important;
        margin-left: 0 !important;
        margin-top: 2px;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    
    .footer a,
    .footer li {
        font-size: 0.9rem;
    }
    
    .footer hr {
        margin: 2rem 0;
    }
    
    .footer .text-center p {
        font-size: 0.85rem;
    }
}

/* Small Mobile View */
@media (max-width: 576px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer img {
        height: 60px !important;
        max-width: 160px;
    }
    
    .footer .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    .footer h5 {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    
    /* Logo section */
    .footer .col-lg-4:first-child p {
        font-size: 0.85rem;
        max-width: 300px;
    }
    
    /* Hubungi Kami - PERFECT ALIGNMENT FOR SMALL SCREENS */
    .footer .col-lg-4:last-child p {
        font-size: 0.85rem;
        max-width: 280px;
        margin-bottom: 0.75rem;
        line-height: 1.6;
    }
    
    .footer .col-lg-4:last-child .bi {
        font-size: 1rem;
        min-width: 24px !important;
        width: 24px !important;
        margin-right: 0.65rem !important;
        margin-top: 2px;
    }
    
    .footer a,
    .footer li {
        font-size: 0.85rem;
    }
    
    .footer hr {
        margin: 1.5rem 0;
    }
    
    .footer .text-center p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer img {
        height: 55px !important;
        max-width: 150px;
    }
    
    .footer h5 {
        font-size: 1.1rem;
    }
    
    /* Logo section */
    .footer .col-lg-4:first-child p {
        font-size: 0.8rem;
        max-width: 280px;
    }
    
    /* Hubungi Kami - PERFECT ALIGNMENT FOR EXTRA SMALL */
    .footer .col-lg-4:last-child p {
        font-size: 0.8rem;
        max-width: 260px;
        margin-bottom: 0.7rem;
        line-height: 1.6;
    }
    
    .footer .col-lg-4:last-child .bi {
        font-size: 0.95rem;
        min-width: 22px !important;
        width: 22px !important;
        margin-right: 0.6rem !important;
        margin-top: 2px;
    }
    
    .footer a,
    .footer li {
        font-size: 0.8rem;
    }
    
    .footer .text-center p {
        font-size: 0.75rem;
    }
}

/* Hover Effects */
.footer .col-lg-4 {
    transition: transform 0.3s ease;
}

.footer .col-lg-4:hover {
    transform: translateY(-3px);
}

/* Print Styles */
@media print {
    .footer {
        background: #fff !important;
        border-top: 2px solid #000;
        padding: 1rem 0;
    }
    
    .footer::before {
        display: none;
    }
    
    .footer * {
        color: #000 !important;
    }
    
    .footer img {
        height: 50px !important;
    }
    
    .footer .col-lg-4:last-child p {
        text-align: left !important;
    }
}